Loops through the elements of a one-dimensional array.
Notes
Syntax
For Each element [As datatype] In array
[statements]
Next
Part | Description |
|---|---|
element |
A variable of the same data type as array that refers to an element of array. The loop processes each value in array. |
datatype |
Optional: The datatype of the array element. It can be any one-dimensional array. If you declare the datatype with the optional AS clause, you do not have to do so with a Dim statement. The datatype must match array's datatype. |
array |
A one-dimensional array. |
The user should not make any assumptions of the traversal order as it is subject to change in the future.
Examples
The following function adds up the numbers in the array passed to it.
Dim sum, element as Double
For Each element In values
sum=sum+element
Next
Return Sum
To call the function, pass an array of doubles in a statement such as:
where s is declared as a Double and MyNumbers is an array of Doubles.
See Also
For…Next statement, Dim statement.